home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / uae-0.000 / uae-0 / uae-0.6.0 / nogui.c < prev    next >
C/C++ Source or Header  |  1996-05-04  |  512b  |  47 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * Interface to the Tcl/Tk GUI
  5.   *
  6.   * Copyright 1996 Bernd Schmidt
  7.   */
  8.  
  9. #include "sysconfig.h"
  10. #include "sysdeps.h"
  11.  
  12. #include "config.h"
  13. #include "options.h"
  14. #include "gui.h"
  15.  
  16. int quit_program;
  17.  
  18. static void sigchldhandler(int foo)
  19. {
  20. }
  21.  
  22. int gui_init(void)
  23. {
  24.     quit_program = 0;
  25.     return 0;
  26. }
  27.  
  28. void gui_exit(void)
  29. {
  30. }
  31.  
  32. void gui_led(int led, int on)
  33. {
  34. }
  35.  
  36. void gui_filename(int num, char *name)
  37. {
  38. }
  39.  
  40. static void getline(char *p)
  41. {
  42. }
  43.  
  44. void gui_handle_events(void)
  45. {
  46. }
  47.